home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 5 / QRZ Ham Radio Callsign Database - Volume 5.iso / files / tcpip / amiga / asrc29p.lha / config.h.full < prev    next >
Encoding:
Text File  |  1993-12-29  |  1.6 KB  |  49 lines

  1. #ifndef    NSESSIONS
  2.  
  3. /* Software options */
  4. #define    MAILBOX        1    /* Include SM0RGV mailbox server */
  5. #define    NNTP        1    /* Netnews client */
  6. #define    POP2        1    /* Include POP2 Post Office Protocol */
  7. #define    POP3        1    /* Include POP3 Post Office Protocol */
  8. #define    SERVERS        1    /* Include TCP servers */
  9. #define    CHATNODE    1    /* Include CHATNODE server */
  10. #define    DIGGER        1    /* Enable Digger server */
  11. #define    TRACE        1    /* Include packet tracing code */
  12. #define    RLOGINCLI       1       /* Rlogin client code */
  13.  
  14. #define    RIP        1    /* Include RIP routing */
  15. #define    RSPF        1    /* Include Radio Shortest Path First Protocol */
  16. #define    FTPTDISC    1    /* Include ftp-server timeout disconnect */
  17.  
  18. #define    NSESSIONS    10    /* Number of interactive clients */
  19. #define    DEFNSOCK    40    /* Default number of sockets */
  20. #define    MTHRESH        8192    /* Default memory threshold */
  21. #define    HEAPSIZE    200    /* Default heap size in kilobytes */
  22. #define    NROWS        25    /* Number of rows on screen */
  23.  
  24. /* Hardware configuration */
  25. #define    SLIP        1    /* Serial line IP */
  26. #define    KISS        1    /* KISS TNC code */
  27. #define    NRS        1    /* NET/ROM async interface */
  28. #define    NETROM        1    /* NET/ROM network support */
  29. #define    AXLINK        1    /* AX25 link connectivity code */
  30. #define    ASY        1    /* Async driver code */
  31. #define    PPP        1    /* Point-to-Point Protocol support */
  32. #define    VJCOMPRESS    1    /* Van Jacobson TCP header compression */
  33.  
  34. #if (defined(NRS))
  35. #undef    NETROM
  36. #define    NETROM        1    /* NRS implies NETROM */
  37. #endif
  38.  
  39. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  40. #define    AX25        1        /* AX.25 subnet code */
  41. #endif
  42.  
  43. #if (defined(PC_EC) || defined(PACKET))
  44. #define    ETHER    1        /* Generic Ethernet code */
  45. #endif
  46.  
  47. #endif    /* NSESSIONS */
  48.  
  49.